home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 19 / CU Amiga Magazine's Super CD-ROM 19 (1998)(EMAP Images)(GB)[!][issue 1998-02].iso / CUCD / Online / Apache / conf / srm.conf-dist-win < prev   
Text File  |  1997-11-05  |  8KB  |  233 lines

  1. # With this document, you define the name space that users see of your http
  2. # server.  This file also defines server settings which affect how requests are
  3. # serviced, and how results should be formatted. 
  4.  
  5. # See the tutorials at http://www.apache.org/ for
  6. # more information.
  7.  
  8. # Originally by Rob McCool; Adapted for Apache
  9.  
  10. # Note: Where filenames are specified, you must use forward slashes
  11. # instead of backslashes. e.g. "c:/apache" instead of "c:\apache". If
  12. # the drive letter is ommited, the drive where Apache.exe is located
  13. # will be assumed.
  14.  
  15. # DocumentRoot: The directory out of which you will serve your
  16. # documents. By default, all requests are taken from this directory, but
  17. # symbolic links and aliases may be used to point to other locations.
  18.  
  19. DocumentRoot "@@ServerRoot@@/htdocs"
  20.  
  21. # UserDir: The name of the directory which is appended onto a user's home
  22. # directory if a ~user request is recieved.
  23.  
  24. UserDir public_html
  25.  
  26. # DirectoryIndex: Name of the file or files to use as a pre-written HTML
  27. # directory index.  Separate multiple entries with spaces.
  28.  
  29. DirectoryIndex index.html
  30.  
  31. # FancyIndexing is whether you want fancy directory indexing or standard
  32.  
  33. FancyIndexing on
  34.  
  35. # AddIcon tells the server which icon to show for different files or filename
  36. # extensions
  37.  
  38. AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip
  39.  
  40. AddIconByType (TXT,/icons/text.gif) text/*
  41. AddIconByType (IMG,/icons/image2.gif) image/*
  42. AddIconByType (SND,/icons/sound2.gif) audio/*
  43. AddIconByType (VID,/icons/movie.gif) video/*
  44.  
  45. AddIcon /icons/binary.gif .bin .exe
  46. AddIcon /icons/binhex.gif .hqx
  47. AddIcon /icons/tar.gif .tar
  48. AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv
  49. AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip
  50. AddIcon /icons/a.gif .ps .ai .eps
  51. AddIcon /icons/layout.gif .html .shtml .htm .pdf
  52. AddIcon /icons/text.gif .txt
  53. AddIcon /icons/c.gif .c
  54. AddIcon /icons/p.gif .pl .py
  55. AddIcon /icons/f.gif .for
  56. AddIcon /icons/dvi.gif .dvi
  57. AddIcon /icons/uuencoded.gif .uu
  58. AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl
  59. AddIcon /icons/tex.gif .tex
  60. AddIcon /icons/bomb.gif core
  61.  
  62. AddIcon /icons/back.gif ..
  63. AddIcon /icons/hand.right.gif README
  64. AddIcon /icons/folder.gif ^^DIRECTORY^^
  65. AddIcon /icons/blank.gif ^^BLANKICON^^
  66.  
  67. # DefaultIcon is which icon to show for files which do not have an icon
  68. # explicitly set.
  69.  
  70. DefaultIcon /icons/unknown.gif
  71.  
  72. # AddDescription allows you to place a short description after a file in
  73. # server-generated indexes.
  74. # Format: AddDescription "description" filename
  75.  
  76. # ReadmeName is the name of the README file the server will look for by
  77. # default. Format: ReadmeName name
  78. #
  79. # The server will first look for name.html, include it if found, and it will
  80. # then look for name and include it as plaintext if found.
  81. #
  82. # HeaderName is the name of a file which should be prepended to
  83. # directory indexes. 
  84.  
  85. ReadmeName README
  86. HeaderName HEADER
  87.  
  88. # IndexIgnore is a set of filenames which directory indexing should ignore
  89. # Format: IndexIgnore name1 name2...
  90.  
  91. IndexIgnore .??* *~ *# HEADER* README* RCS
  92.  
  93. # AccessFileName: The name of the file to look for in each directory
  94. # for access control information.
  95.  
  96. AccessFileName .htaccess
  97.  
  98. # DefaultType is the default MIME type for documents which the server
  99. # cannot find the type of from filename extensions.
  100.  
  101. DefaultType text/plain
  102.  
  103. # AddEncoding allows you to have certain browsers (Mosaic/X 2.1+) uncompress
  104. # information on the fly. Note: Not all browsers support this.
  105.  
  106. AddEncoding x-compress Z
  107. AddEncoding x-gzip gz
  108.  
  109. # AddLanguage allows you to specify the language of a document. You can
  110. # then use content negotiation to give a browser a file in a language
  111. # it can understand.  Note that the suffix does not have to be the same
  112. # as the language keyword --- those with documents in Polish (whose
  113. # net-standard language code is pl) may wish to use "AddLanguage pl .po" 
  114. # to avoid the ambiguity with the common suffix for perl scripts.
  115.  
  116. AddLanguage en .en
  117. AddLanguage fr .fr
  118. AddLanguage de .de
  119. AddLanguage da .da
  120. AddLanguage el .el
  121. AddLanguage it .it
  122.  
  123. # LanguagePriority allows you to give precedence to some languages
  124. # in case of a tie during content negotiation.
  125. # Just list the languages in decreasing order of preference.
  126.  
  127. LanguagePriority en fr de
  128.  
  129. # Redirect allows you to tell clients about documents which used to exist in
  130. # your server's namespace, but do not anymore. This allows you to tell the
  131. # clients where to look for the relocated document.
  132. # Format: Redirect fakename url
  133.  
  134.  
  135. # Aliases: Add here as many aliases as you need (with no limit). The format is 
  136. # Alias fakename realname
  137.  
  138. # Note that if you include a trailing / on fakename then the server will
  139. # require it to be present in the URL.  So "/icons" isn't aliased in this
  140. # example.
  141.  
  142. #Alias /icons/ /apache/icons/
  143.  
  144. # ScriptAlias: This controls which directories contain server scripts.
  145. # Format: ScriptAlias fakename realname
  146.  
  147. #ScriptAlias /cgi-bin/ /apache/cgi-bin/
  148.  
  149. # If you want to use server side includes, or CGI outside
  150. # ScriptAliased directories, uncomment the following lines.
  151.  
  152. # AddType allows you to tweak mime.types without actually editing it, or to
  153. # make certain files to be certain types.
  154. # Format: AddType type/subtype ext1
  155.  
  156. # For example, the PHP3 module (not part of the Apache distribution)
  157. # will typically use:
  158. #AddType application/x-httpd-php3 .phtml
  159. #AddType application/x-httpd-php3-source .phps
  160.  
  161. # AddHandler allows you to map certain file extensions to "handlers",
  162. # actions unrelated to filetype. These can be either built into the server
  163. # or added with the Action command (see below)
  164. # Format: AddHandler action-name ext1
  165.  
  166. # To use CGI scripts:
  167. #AddHandler cgi-script .cgi
  168.  
  169. # To use server-parsed HTML files
  170. #AddType text/html .shtml
  171. #AddHandler server-parsed .shtml
  172.  
  173. # Uncomment the following line to enable Apache's send-asis HTTP file
  174. # feature
  175. #AddHandler send-as-is asis
  176.  
  177. # If you wish to use server-parsed imagemap files, use
  178. #AddHandler imap-file map
  179.  
  180. # To enable type maps, you might want to use
  181. #AddHandler type-map var
  182.  
  183. # Action lets you define media types that will execute a script whenever
  184. # a matching file is called. This eliminates the need for repeated URL
  185. # pathnames for oft-used CGI file processors.
  186. # Format: Action media/type /cgi-script/location
  187. # Format: Action handler-name /cgi-script/location
  188.  
  189. # MetaDir: specifies the name of the directory in which Apache can find
  190. # meta information files. These files contain additional HTTP headers
  191. # to include when sending the document
  192.  
  193. #MetaDir .web
  194.  
  195. # MetaSuffix: specifies the file name suffix for the file containing the
  196. # meta information.
  197.  
  198. #MetaSuffix .meta
  199.  
  200. # Customizable error response (Apache style)
  201. #  these come in three flavors
  202. #
  203. #    1) plain text
  204. #ErrorDocument 500 "The server made a boo boo.
  205. #  n.b.  the (") marks it as text, it does not get output
  206. #
  207. #    2) local redirects
  208. #ErrorDocument 404 /missing.html
  209. #  to redirect to local url /missing.html
  210. #ErrorDocument 404 /cgi-bin/missing_handler.pl
  211. #  n.b. can redirect to a script or a document using server-side-includes.
  212. #
  213. #    3) external redirects
  214. #ErrorDocument 402 http://some.other_server.com/subscription_info.html
  215. #
  216.  
  217. # mod_mime_magic allows the server to use various hints from the file itself
  218. # to determine its type.
  219. #MimeMagicFile conf/magic
  220.  
  221. # The following directive disables keepalives and HTTP header flushes for
  222. # Netscape 2.x and browsers which spoof it. There are known problems with
  223. # these
  224.  
  225. BrowserMatch Mozilla/2 nokeepalive
  226.  
  227. # The following directive disables HTTP/1.1 responses to browsers which
  228. # are in violation of the HTTP/1.0 spec by not being able to grok a
  229. # basic 1.1 response.
  230.  
  231. BrowserMatch "RealPlayer 4.0" force-response-1.0
  232.  
  233.